| # | {% trans "Sent at" %} | {% trans "Subject" %} | {% trans "From" %} | {% trans "To" %} | CC | BCC | {% trans "Attachments" %} |
|---|---|---|---|---|---|---|---|
| {{ e.idx }} | {{ e.sent_at }} | {{ e.subject }} | {{ e.from_email }} | {{ e.to|join:", " }} | {{ e.cc|join:", " }} | {{ e.bcc|join:", " }} | {% if e.attachments_count %}{{ e.attachments_count }}{% else %}-{% endif %} |
| {% trans "The outbox is empty." %} | |||||||
{% if has_prev %}
{% trans "first" %}
{% trans "previous" %}
{% else %}
{% trans "first" %}
{% trans "previous" %}
{% endif %}
{% for p in page_range %}
{% if p == page %}
{{ p }}
{% else %}
{{ p }}
{% endif %}
{% endfor %}
{% if has_next %}
{% trans "next" %}
{% trans "last" %}
{% else %}
{% trans "next" %}
{% trans "last" %}
{% endif %}
{% blocktrans %}Page {{ page }} of {{ num_pages }} ({{ count }} emails){% endblocktrans %}